home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 21 / AACD 21.iso / AACD / Graphics / FMdriverVHI / Install Software < prev    next >
Encoding:
Text File  |  2001-04-07  |  1.1 KB  |  43 lines

  1. ; $VER: Installation script for VHI-FMdriver 1.10
  2. ; © Stefan Robl
  3. ; Created with GoldED 6.1.4
  4.  
  5.  
  6. ; check if we are running under correct OS
  7. (if (< (/ (getversion) 65536) 39) 
  8.     (
  9.         (abort "Incorrect OS version (software requires OS 39 or better )!")
  10.     )
  11. )
  12.  
  13. ; error handling
  14. (onerror
  15.     (if (> @ioerr 0)
  16.         (
  17.             (message
  18.                 ("An error has occurred during installation. Please check the log file to understand the error.")
  19.             )
  20.         )
  21.     )
  22.     (exit (quiet))
  23. )
  24.  
  25. (welcome)
  26.  
  27.  
  28. (COMPLETE 50) ; VHI-FMdriver
  29. (copyfiles
  30.     (prompt "Copying VHI-FMdriver...")
  31.     (help @copy-files)
  32.     (source "VHI/FrameMachine.vhi")
  33.     (dest "libs:")
  34.     (infos)
  35.     (optional nofail force)
  36.     (confirm)
  37. )
  38.  
  39. (COMPLETE 100)
  40.  
  41. (exit "FMdriverVHI successfully installed!\n\n" "If you don't have installed the latest version\n" "of the FMdriver-package, you need to\n" "download the latest version from my homepage:\n\n" "http://www.qdev.de\n\n" "The FMdriver package contains the hardware driver\n" "for the FrameMachine board needed\n" "also for this VHI driver." (quiet))
  42.  
  43.